// Text of project MooUnit written on 11/20/95 at 7:27 PM
// Beginning of text file MooUnit.unit
// Copyright 1995 Apple Computer, Inc.  All rights reserved.

DeclareUnit('|Moo:PIEDTS|, 1, 0, {
	onomatopoeia:	0,
	sound:			1,
	picture:		2,
});
// End of text file MooUnit.unit
// Beginning of text file MooUnit.f
// Copyright 1995 Apple Computer, Inc.  All rights reserved.


refNum := OpenResFileX( Home & "MooUnit.rsrc"); 
  DefConst('kMooSound, GetSound("moo"));
  DefConst('kMable, GetPICTAsBits("mable", nil));
CloseResFileX(refNum);


DefineUnit('|Moo:PIEDTS|, {
	onomatopoeia:	"mooooo",
	sound:			kMooSound,
	picture:		kMable,
});

// SetPartFrameSlot('text, "MooUnit"); // give extra icon a better name

InstallScript := func(partFrame, removeFrame)
	begin
		// need this (for now) or we throw
	end;

RemoveScript := func(removeFrame)
	begin
		// need this (for now) or we throw
	end;
// End of text file MooUnit.f



